Skip to contentMethod: FilePackage(String, String)
      1: package migration;
2: 
3: /**
4:  * Represents a file package.
5:  * 
6:  * @author Jannik
7:  *
8:  */
9: public class FilePackage {
10:         /**
11:          * the package name like base, isdn, etc.
12:          * 
13:          */
14:         private final String packageName;
15: 
16:         /**
17:          * the package path like config/base.txt.
18:          */
19:         private final String path;
20: 
21:         /**
22:          * Represents a file package.
23:          * 
24:          * @param packageName
25:          *            the name of the file package
26:          * @param path
27:          *            the path of the file package
28:          */
29:         public FilePackage(final String packageName, final String path) {
30:                 super();
31:                 this.packageName = packageName;
32:                 this.path = path;
33:         }
34: 
35:         /**
36:          * Get the package name like base, isdn, etc.
37:          * 
38:          * @return the packageName
39:          */
40:         public String getPackageName() {
41:                 return packageName;
42:         }
43: 
44:         /**
45:          * Get the package path like config/base.txt.
46:          * 
47:          * @return the packageName
48:          */
49:         public String getPath() {
50:                 return path;
51:         }
52: }